type github.com/klauspost/compress/zstd.fastEncoder

10 uses

	github.com/klauspost/compress/zstd (current package)
		enc_dfast.go#L26: 	fastEncoder
		enc_fast.go#L26: type fastEncoder struct {
		enc_fast.go#L32: 	fastEncoder
		enc_fast.go#L39: func (e *fastEncoder) Encode(blk *blockEnc, src []byte) {
		enc_fast.go#L294: func (e *fastEncoder) EncodeNoHist(blk *blockEnc, src []byte) {
		enc_fast.go#L793: func (e *fastEncoder) Reset(d *dict, singleBlock bool) {
		encoder_options.go#L54: 			return &fastEncoderDict{fastEncoder: fastEncoder{fastBase: fastBase{maxMatchOff: int32(o.windowSize), bufferReset: math.MaxInt32 - int32(o.windowSize*2), lowMem: o.lowMem}}}
		encoder_options.go#L56: 		return &fastEncoder{fastBase: fastBase{maxMatchOff: int32(o.windowSize), bufferReset: math.MaxInt32 - int32(o.windowSize*2), lowMem: o.lowMem}}
		encoder_options.go#L60: 			return &doubleFastEncoderDict{fastEncoderDict: fastEncoderDict{fastEncoder: fastEncoder{fastBase: fastBase{maxMatchOff: int32(o.windowSize), bufferReset: math.MaxInt32 - int32(o.windowSize*2), lowMem: o.lowMem}}}}
		encoder_options.go#L62: 		return &doubleFastEncoder{fastEncoder: fastEncoder{fastBase: fastBase{maxMatchOff: int32(o.windowSize), bufferReset: math.MaxInt32 - int32(o.windowSize*2), lowMem: o.lowMem}}}